home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-07-18 | 477 b | 28 lines | [TEXT/MMCC] |
- // iostream standard header
- #ifndef _IOSTREAM_
- #define _IOSTREAM_
- #include <fstream>
-
- #if __MWERKS__
- #pragma options align=mac68k
- #endif
-
- // standard stream declarations
- extern istream cin;
- extern ostream cout;
- extern ostream cerr;
- extern ostream clog;
- static ios::Init _Ios_init;
-
- #if __MWERKS__
- #pragma options align=reset
- #endif
-
- #endif
-
- /*
- * Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
- * Consult your license regarding permissions and restrictions.
- */
-
-